From 59373455fe49a1d10507dabbfbf3ca18c912b8d3 Mon Sep 17 00:00:00 2001 From: =?utf8?q?=C3=98yvind=20Kol=C3=A5s?= Date: Wed, 21 Mar 2007 17:12:39 +0000 Subject: [PATCH] Make force the value of shrext to either .dll or .so (it seems like it * configure.ac: Make force the value of shrext to either .dll or .so (it seems like it wasn't defined for unixy systems after all). svn path=/trunk/; revision=231 --- ChangeLog | 5 +++++ configure.ac | 4 +++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index b6b9c9d..d582ecc 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2007-03-21 Øyvind Kolås + + * configure.ac: Make force the value of shrext to either .dll or .so + (it seems like it wasn't defined for unixy systems after all). + 2007-03-13 Michael Schumacher * configure.ac: use PATHSEP (platform-dependent, defined to ';' on diff --git a/configure.ac b/configure.ac index 3887b6e..03f9a0a 100644 --- a/configure.ac +++ b/configure.ac @@ -160,12 +160,14 @@ esac ################# AC_MSG_CHECKING([for some Win32 platform]) -case "$target_or_host" in +case "$target_or_host" in *-*-mingw* | *-*-cygwin*) platform_win32=yes + shrext=.dll ;; *) platform_win32=no + shrext=.so ;; esac AC_MSG_RESULT([$platform_win32]) -- 2.30.2